home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / archiver / lzhsourc.lzh / LZH.SRC / GOODPUTC.H < prev    next >
Text File  |  1992-07-02  |  128b  |  10 lines

  1.  
  2. int file_putc(char c, FILE *f)
  3.  {
  4.    putc(c,f);
  5.    if (ferror(f)) return EOF;
  6.    return 0;
  7.  }
  8. #define putc file_putc
  9.  
  10.